home *** CD-ROM | disk | FTP | other *** search
- /* collecting all the defines in one place */
-
- #define ALLOCSIZE 2048 /* used in readData */
-
- #ifndef MIN
- #define MIN(x,y) ((x)<(y)? (x) : (y))
- #endif
-
- #ifndef MAX
- #define MAX(x,y) ((x)>(y)? (x) : (y))
- #endif
-
- #ifndef ABS
- #define ABS(x) ( (x)<0? (-(x)) : (x) )
- #endif
-
- #ifndef SGN
- #define SGN(x) ( (x)<0? -1.0 : 1.0 )
- #endif
-
- #define XOFFSET 75.0 /* offsets (in pixels) of axis origin from */
- #define YOFFSET 25.0 /* lower left hand corner of window */
- #define DEFAULTWIDTH 564
- #define DEFAULTHEIGHT 427
-
- #define SQRT3 1.73205081
-
-
-
-
-
-